home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Erich Tran',
- 'Copyright': u'',
- 'Description': u'',
- 'Host': u'Paint Shop Pro',
- 'Host Version': u'8.10'
- }
-
- def Preset_ColorAdjustHMS():
- return {
- 'HMS': {
- 'AdjMethod': App.Constants.HMSAdjustmentMethod.Linear,
- 'Highlight': 58,
- 'Midtone': 46,
- 'Shadow': 28
- }
- }
-
- def Do(Environment):
- # Color Adjust HMS
- App.Do( Environment, 'ColorAdjustHMS', Preset_ColorAdjustHMS())
-
-